home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / MPW Related / Animated Cursors / ShowCursor.r < prev    next >
Encoding:
Text File  |  1990-09-14  |  1.3 KB  |  101 lines  |  [TEXT/MPS ]

  1. #include "Types.r"
  2.  
  3. resource 'CNTL' (128, purgeable) {
  4.     {20, 20, 40, 180},
  5.     0,
  6.     visible,
  7.     0,
  8.     0,
  9.     pushButProc,
  10.     0,
  11.     "Wait For A While"
  12. };
  13.  
  14. resource 'CNTL' (129, purgeable) {
  15.     {20, 200, 40, 360},
  16.     0,
  17.     visible,
  18.     0,
  19.     0,
  20.     pushButProc,
  21.     0,
  22.     "Wait Until Mouse Click"
  23. };
  24.  
  25. resource 'MENU' (128) {
  26.     128,
  27.     textMenuProc,
  28.     0xFFFFFFFF,
  29.     enabled,
  30.     apple,
  31.     {
  32.     }
  33. };
  34.  
  35. resource 'MENU' (129) {
  36.     129,
  37.     textMenuProc,
  38.     0x5,
  39.     enabled,
  40.     "File",
  41.     {    /* array: 1 elements */
  42.         "Quit", noIcon, "Q", "", plain
  43.     }
  44. };
  45.  
  46. resource 'MENU' (130) {
  47.     130,
  48.     textMenuProc,
  49.     0x80,
  50.     enabled,
  51.     "Edit",
  52.     {    /* array: 6 elements */
  53.         /* [1] */
  54.         "Undo", noIcon, "Z", "", plain,
  55.         /* [2] */
  56.         "-", noIcon, "", "", plain,
  57.         /* [3] */
  58.         "Cut", noIcon, "X", "", plain,
  59.         /* [4] */
  60.         "Copy", noIcon, "C", "", plain,
  61.         /* [5] */
  62.         "Paste", noIcon, "V", "", plain,
  63.         /* [6] */
  64.         "Clear", noIcon, "B", "", plain
  65.     }
  66. };
  67.  
  68. resource 'SIZE' (-1) {
  69.     dontSaveScreen,
  70.     acceptSuspendResumeEvents,
  71.     enableOptionSwitch,
  72.     cannotBackground,
  73.     multiFinderAware,
  74.     backgroundAndForeground,
  75.     dontGetFrontClicks,
  76.     ignoreChildDiedEvents,
  77.     is32BitCompatible,
  78.     reserved,
  79.     reserved,
  80.     reserved,
  81.     reserved,
  82.     reserved,
  83.     reserved,
  84.     reserved,
  85.     131072,
  86.     131072
  87. };
  88.  
  89. resource 'STR ' (128, purgeable) {
  90.     "Save Image As:"
  91. };
  92.  
  93. resource 'WIND' (128, purgeable) {
  94.     {0, 0, 100, 380},
  95.     documentProc,
  96.     invisible,
  97.     noGoAway,
  98.     0x0,
  99.     "Cursors!"
  100. };
  101.